home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / wxincs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-03-30  |  1.3 KB  |  45 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: wxincs.h
  6. // Compiler Used: MSVC40, HP CPP 10.24
  7. // Produced By: Doug Gaer    
  8. // File Creation Date: 12/16/1997  
  9. // Date Last Modified: 03/30/1999
  10. // ----------------------------------------------------------- // 
  11. // ---------- Include File Description and Details  ---------- // 
  12. // ----------------------------------------------------------- // 
  13. /*
  14. Additional include files need to compile with the wxWindows
  15. GUI library version 1.68b
  16. */
  17. // ----------------------------------------------------------- //   
  18. #ifndef __WXINCS_HPP__
  19. #define __WXINCS_HPP__
  20.  
  21. #ifdef __GNUG__
  22. #pragma implementation
  23. #endif
  24.  
  25. // For compilers that support precompilation, includes "wx.h".
  26. #include "wx_prec.h"
  27.  
  28. #ifdef __BORLANDC__
  29. #pragma hdrstop
  30. #endif
  31.  
  32. #ifndef WX_PRECOMP
  33. #include "wx.h"
  34. #endif
  35.  
  36. #ifdef _MSC_VER
  37. #pragma warning (disable : 4244)
  38. #endif
  39.  
  40. #endif  // __WXINCS_HPP__ 
  41. // ----------------------------------------------------------- //
  42. // ------------------------------- //
  43. // --------- End of File --------- //
  44. // ------------------------------- //
  45.